home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / 16 windows forms / otherobjects / startupform.vb < prev   
Encoding:
Text File  |  2001-09-19  |  3.9 KB  |  112 lines

  1. Public Class StartupForm
  2.     Inherits System.Windows.Forms.Form
  3.  
  4. #Region " Windows Form Designer generated code "
  5.  
  6.     Public Sub New()
  7.         MyBase.New()
  8.  
  9.         'This call is required by the Windows Form Designer.
  10.         InitializeComponent()
  11.  
  12.         'Add any initialization after the InitializeComponent() call
  13.  
  14.     End Sub
  15.  
  16.     'Form overrides dispose to clean up the component list.
  17.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  18.         If disposing Then
  19.             If Not (components Is Nothing) Then
  20.                 components.Dispose()
  21.             End If
  22.         End If
  23.         MyBase.Dispose(disposing)
  24.     End Sub
  25.     Friend WithEvents Button1 As System.Windows.Forms.Button
  26.     Friend WithEvents Button2 As System.Windows.Forms.Button
  27.     Friend WithEvents Button3 As System.Windows.Forms.Button
  28.     Friend WithEvents Button4 As System.Windows.Forms.Button
  29.  
  30.     'Required by the Windows Form Designer
  31.     Private components As System.ComponentModel.Container
  32.  
  33.     'NOTE: The following procedure is required by the Windows Form Designer
  34.     'It can be modified using the Windows Form Designer.  
  35.     'Do not modify it using the code editor.
  36.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  37.         Me.Button1 = New System.Windows.Forms.Button()
  38.         Me.Button2 = New System.Windows.Forms.Button()
  39.         Me.Button3 = New System.Windows.Forms.Button()
  40.         Me.Button4 = New System.Windows.Forms.Button()
  41.         Me.SuspendLayout()
  42.         '
  43.         'Button1
  44.         '
  45.         Me.Button1.Location = New System.Drawing.Point(24, 16)
  46.         Me.Button1.Name = "Button1"
  47.         Me.Button1.Size = New System.Drawing.Size(168, 40)
  48.         Me.Button1.TabIndex = 0
  49.         Me.Button1.Text = "Clipboard object"
  50.         '
  51.         'Button2
  52.         '
  53.         Me.Button2.Location = New System.Drawing.Point(24, 72)
  54.         Me.Button2.Name = "Button2"
  55.         Me.Button2.Size = New System.Drawing.Size(168, 40)
  56.         Me.Button2.TabIndex = 0
  57.         Me.Button2.Text = "Application object"
  58.         '
  59.         'Button3
  60.         '
  61.         Me.Button3.Location = New System.Drawing.Point(24, 128)
  62.         Me.Button3.Name = "Button3"
  63.         Me.Button3.Size = New System.Drawing.Size(168, 40)
  64.         Me.Button3.TabIndex = 0
  65.         Me.Button3.Text = "Cursor object"
  66.         '
  67.         'Button4
  68.         '
  69.         Me.Button4.Location = New System.Drawing.Point(24, 184)
  70.         Me.Button4.Name = "Button4"
  71.         Me.Button4.Size = New System.Drawing.Size(168, 40)
  72.         Me.Button4.TabIndex = 0
  73.         Me.Button4.Text = "SendKeys object"
  74.         '
  75.         'StartupForm
  76.         '
  77.         Me.AutoScaleBaseSize = New System.Drawing.Size(7, 17)
  78.         Me.ClientSize = New System.Drawing.Size(256, 245)
  79.         Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button4, Me.Button3, Me.Button2, Me.Button1})
  80.         Me.Font = New System.Drawing.Font("Microsoft Sans Serif", 11!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
  81.         Me.Name = "StartupForm"
  82.         Me.Text = "StartupForm"
  83.         Me.ResumeLayout(False)
  84.  
  85.     End Sub
  86.  
  87. #End Region
  88.  
  89.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  90.         Dim frm As New ClipboardForm()
  91.         frm.Show()
  92.     End Sub
  93.  
  94.     Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
  95.         Dim frm As New ApplicationForm()
  96.         frm.Show()
  97.     End Sub
  98.  
  99.  
  100.     Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
  101.         Dim frm As New CursorForm()
  102.         frm.Show()
  103.  
  104.     End Sub
  105.  
  106.     Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
  107.         Dim frm As New SendKeysForm()
  108.         frm.Show()
  109.  
  110.     End Sub
  111. End Class
  112.